home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / Classes / UHMath / PSView.h < prev    next >
Encoding:
Text File  |  1992-08-07  |  312 b   |  18 lines

  1. //UHMath.m
  2. //By Murtaza Ziauddin, University of Houston.
  3. //email address ziauddin@tree.egr.uh.edu
  4. //You may freely copy and resuse this code.
  5. //This Object displays postscript in a View.
  6.  
  7.  
  8. #import <appkit/appkit.h>
  9.  
  10. @interface PSView:View
  11. {
  12.     NXEPSImageRep    *epsImage;
  13. }
  14. -erase;
  15. -drawEPS:(const char *)file;
  16.  
  17. @end
  18.